home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 March / macformat-022.iso / Shareware City / Utilities / MacDOS™ 2.0.0ƒ / batches / listfile.bat < prev    next >
Encoding:
DOS Batch File  |  1994-11-23  |  256 b   |  12 lines  |  [TEXT/mDOS]

  1. @echo off
  2. ! this is a simple example of the usage of OPEN/READ/CLOSE
  3. ! type        LISTFILE aName        to list the text file named 'aName'
  4. ! It is equivalent to the standard TYPE command
  5. !
  6.     onerror DONE_LBL
  7.     open %1 id
  8.     repeat DONE_LBL
  9.     read %id%
  10. :DONE_LBL
  11.     set id=
  12.